Metadata-Version: 2.1
Name: axidrawinternal
Version: 2.7.5
Summary: Driver for AxiDraw Pen Plotter
Home-page: https://gitlab.com/evil-mad/AxiDraw-Internal/tree/master
Author: Evil Mad Scientist Laboratories
Author-email: contact@evilmadscientist.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Intended Audience :: End Users/Desktop
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: ink-extensions (>=1.1.0)
Requires-Dist: future
Requires-Dist: requests
Requires-Dist: plotink (>=1.2.4)
Provides-Extra: dev
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: mock ; extra == 'dev'
Provides-Extra: hershey
Requires-Dist: hersheyadvanced ; extra == 'hershey'
Provides-Extra: test
Requires-Dist: mock ; extra == 'test'

# AxiDraw-Internal

This repository contains documentation for axicli and pyaxidraw as well as the internal source used by axicli.

See the README files docs/axicli and docs/pyaxidraw.

Installation
===========

Clone the repository.

```
pip install .
```

For testing:
```
git install .['test']
```

For development:
```
git install .['dev']
```

If you wish to use hershey-related functions (e.g. merge), set your HERSHEYADVANCED_DEPLOY_USER, and HERSHEYADVANCED_DEPLOY_PASS environment variables, then:

```
pip install -r requirements/hershey.txt # did you set the environment variables?
```

To upgrade all the dependencies to their latest version (recommended)

```
pip install . -upgrade-strategy eager --upgrade
```


